* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 67vh;
    position: relative;
    z-index: 1000;
    text-align: center;
    flex-direction: column;
}

.text-box {
    width: 100%;
    color: #fff;
    text-align: center;
    z-index: 1000;

}

.text-box h1 {
    font-size: 62px;
    text-shadow: 2px 2px 0px #000000;
}

.text-box p {
    margin: 20px 0 40px;
    font-size: 14px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background-color: #6e6e6eab;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
}

.marquee-container {
    width: 60%;
    height: 50px;
    margin: 50px auto;
    background-color: yellow;
    border-radius: 40px;
    display: flex;
    align-items: center;
}

.icon {
    font-size: 40px;
    margin-left: 5px;
    text-align: left;
}

marquee {
    color: rgb(0, 0, 0);
    margin: 10px 10px;
    font-size: 25px;
    font-family: 'Caveat', cursive;
    border-radius: 40px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    z-index: -1;
}

canvas {
    display: block;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o {
    color: #f44336;
}

#span-color-1 {
    color: #c084fc;
    margin: auto 5px;
}

#span-color-2 {
    color: #ff69b4;
    margin: auto 5px;
}

#span-large {
    font-size: 16px;
}

/*--Adjust To Fit Phone View--*/
@media (max-width:2000px) {
    .main-section {
        min-height: 60vh;
    }
}

@media (max-width:1400px) {
    .text-box h1 {
        font-size: 40px;
    }

    .text-box p {
        font-size: 12px;
    }

    .hero-btn {
        padding: 10px 28px;
        font-size: 10px;
    }

    .marquee-container {
        width: 60%;
        height: 40px;
        margin: 50px auto;
    }

    .icon {
        font-size: 35px;
    }

    marquee {
        font-size: 20px;
    }

    .main-section {
        min-height: 59vh;
    }
}

@media (max-width:900px) {
    .text-box h1 {
        font-size: 35px;
    }

    .text-box p {
        font-size: 10px;
    }

    .hero-btn {
        padding: 9px 25px;
        font-size: 10px;
    }

    #span-large {
    font-size: 14px;
}

    .marquee-container {
        width: 80%;
        height: 35px;
        margin-top: 120px;
    }

    .icon {
        font-size: 32px;
        margin-left: 3px;
    }

    marquee {
        font-size: 17px;
    }

    .main-section {
        min-height: 58vh;
    }
}

@media (max-width:630px) {
    .footer {
        font-size: 12px;
    }

    #span-large {
    font-size: 11px;
}
}

@media (max-width:580px) {
    .text-box h1 {
        font-size: 25px;
    }

    .hero-btn {
        padding: 7px 22px;
        font-size: 8px;
    }

    .marquee-container {
        height: 32px;
    }

    .icon {
        font-size: 30px;
        margin-left: 2px;
    }

    marquee {
        font-size: 15px;
    }
}

@media (max-width:450px) {
    .text-box h1 {
        font-size: 23px;
    }

    .main-section {
        min-height: 55vh;
    }
}